Hi.
Following my previous topic, I would like to suggest a new feature for Lucidscale AWS imports. For now, only the account alias is retrieved (example with aws CLI), and it can be null :
aws iam list-account-aliases{ "AccountAliases": []}
I need the name attribute, that can be fetched from AWS Organizations :
aws organizations describe-account --account-id 870XXXX453
{
"Account": {
"Id": "870XXXX453",
"Arn": "arn:aws:organizations::xxxxxxxxxxxxxxxxxxxxxxxxx",
"Email": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"Name": "XXX Workload Non Prod",
"Status": "ACTIVE",
"JoinedMethod": "CREATED",
"JoinedTimestamp": "2023-10-06T11:52:30.505000+02:00" }
}
Thanks.